/* ********** General ********** */
body, html, h1, h2, p {
    margin: 0;
    padding: 0;
}
:root {
    --color-yellow: #ffe642;
    --color-green: #25ab75;
    --color-grey: #575757;
    --color-red: #fb1351;
    
}

body, html {
    height: 100%;
}
body {
    background-color: #000;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;

    background-image: url(images/1.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

 /*--.wrapper {
      min-height: 100%;
      display: flex;
     flex-direction: column;
     background-image: url(images/1.gif);
     background-repeat: no-repeat;
     background-attachment: fixed;
     background-position: top right  ; >
 }*/
    
.main {
    flex: 1 1 auto;
}
/* ********** /General ********** */

/* ********** Main ********** */
.item {
    display: flex;
    justify-content: flex-start;
    padding: 50px 0;
    border-bottom: 1px solid var(--color-grey);
}
.number, .arrow {
     width: 50px;
     font-size: 25px;
}
.number {
    color: var(--color-grey);
    text-align: left;
    
}
.title {
    width: 100%;
    padding-left:150px; 
    font-size: 35px;
}

.title-link a {
    text-decoration: none;
    color: #ff0000;
    font-size: 35px;

    text-shadow:
        2px 2px 0 #ff00ff,
        4px 4px 0 #000000,
        5px 5px 7px rgba(0,0,0,0.5);

    transition: all 0.5s;
}

 /*.title-link a {
     text-decoration: none;
     color: #ff0000;
     transition: all .5s;
}*/
.title a:hover {
    color: var(--color-yellow);
}
.amt {
    color: var(--color-grey);
    font-size:12px;
}
.arrow {
    width: 50px;
    text-align: right;
}
.arrow a {
    color: var(--color-red);
}
/* ********** /Main ********** */

/* ********** Footer ********** */
.footer {
    padding: 50px;
}
.footer a {
    text-decoration: none;
    color: var(--color-grey);
    transition: all .5s;
}
.footer a:hover {
    color: var(--color-yellow);
}
/* ********** /Footer ********** */